VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / DrawingString Class / Split Methods / Split(Char[]) Method
Syntax Requirements SeeAlso
In This Topic
Split(Char[]) Method (DrawingString)
In This Topic
Splits a string into substrings based on the characters in an array.
Syntax
'Declaration

Public Overloads Function Split( _
ByVal ParamArray separator
A character array that delimits the substrings in this string.
() As Char _
) As DrawingString[]
public DrawingString[] Split(
params char[] separator
)

Parameters

separator
A character array that delimits the substrings in this string.

Return Value

An array whose elements contain the substrings in this string that are delimited by one or more characters in separator.
Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also